mirror of
https://github.com/denisidoro/navi
synced 2024-11-11 06:24:16 +00:00
9 lines
161 B
Bash
Executable file
9 lines
161 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
git pull
|
|
"${SCRIPT_DIR}/scripts/install" || true
|