mirror of
https://github.com/denisidoro/navi
synced 2025-02-16 20:48:28 +00:00
10 lines
161 B
Text
10 lines
161 B
Text
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
||
|
|
||
|
cd "$SCRIPT_DIR"
|
||
|
|
||
|
git pull
|
||
|
"${SCRIPT_DIR}/scripts/install" || true
|