mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
9d0a2ac1c1
Changes: 1. Fixes #86, now all variables are accessed as functions 2. Fixes #85, now these use cases are working correctly 3. Fixes #83, now init works relative to `.git` folder 4. Closes #77, zsh-plugin is deprecated 5. Refs #53, done some refactoring to tests 6. Closes #82, added additional information to pull-request template 7. Refs #22, plugins are deprecated 8. Also made a lot of improvments into both code and tests
27 lines
875 B
Bash
27 lines
875 B
Bash
#!/usr/bin/env zsh
|
|
|
|
# Copyright 2016 Sobolev Nikita <mail@sobolevn.me>
|
|
#
|
|
# Licensed under the MIT License
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Deprecation warning:
|
|
(>&2 echo "warning: this installation method is deprecated since version 0.2.3")
|
|
(>&2 echo "warning: it will be completely removed by the version 0.3.0")
|
|
(>&2 echo "warning: use binary installation instead")
|
|
|
|
# Create binary:
|
|
PLUGIN_DIR="$(dirname "$0")"
|
|
|
|
if [ ! -f "$PLUGIN_DIR/git-secret" ]; then
|
|
cd "$PLUGIN_DIR" && make build && cd ..
|
|
fi
|
|
|
|
# Add our plugin's bin diretory to user's path
|
|
export PATH="${PATH}:${PLUGIN_DIR}"
|