Browse Source

Allow to run install.sh from any current working directory

master
Kristaps Kaupe 3 years ago
parent
commit
e47f0823cb
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      install.sh

2
install.sh

@ -1,5 +1,7 @@
#!/usr/bin/env bash
cd "$(dirname "$0")"
check_exists() {
command -v "$1" > /dev/null
}

Loading…
Cancel
Save