2016-06-30 19:32:42 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
2016-02-22 10:49:26 +00:00
|
|
|
# Copyright 2016 Sobolev Nikita <mail@sobolevn.me>
|
|
|
|
#
|
2017-02-04 20:15:16 +00:00
|
|
|
# Licensed under the MIT License
|
2016-02-22 10:49:26 +00:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
2017-03-05 21:46:49 +00:00
|
|
|
# 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")
|
|
|
|
|
2016-02-22 10:49:26 +00:00
|
|
|
# Create binary:
|
2016-06-30 19:32:42 +00:00
|
|
|
PLUGIN_DIR="$(dirname "$0")"
|
2016-02-22 10:49:26 +00:00
|
|
|
|
|
|
|
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}"
|