mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-09 08:12:52 +02:00
6 lines
176 B
Bash
6 lines
176 B
Bash
#!/bin/bash
|
|
set -e
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
pushd $DIR/../../ > /dev/null
|
|
basename -s .git `git config --get remote.origin.url`
|
|
popd > /dev/null
|