mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-01 12:26:02 +03:00
10 lines
109 B
Bash
Executable File
10 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
PWD="$(dirname $(readlink -f -- $0))"
|
|
|
|
echo $PWD
|