Compare commits

...

4 Commits

Author SHA1 Message Date
Naelson Douglas C. Oliveira 4ca6f98c52
Merge a59ccaab4d into 0749880ad1 2024-03-24 13:08:44 -04:00
CorpNewt 0749880ad1
Update gibMacOS.command 2024-03-23 12:34:48 -05:00
CorpNewt f0db386238
Update BuildmacOSInstallApp.command 2024-03-23 12:34:28 -05:00
naelsondouglas a59ccaab4d removed a singleton-comparison pitfall 2021-11-02 03:35:53 -03:00
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# Get the curent directory, the script name
# and the script name with "py" substituted for the extension.
args=( "$@" )
dir="${0%/*}"
dir="$(cd -- "$(dirname "$0")" >/dev/null 2>&1; pwd -P)"
script="${0##*/}"
target="${script%.*}.py"

View File

@ -3,7 +3,7 @@
# Get the curent directory, the script name
# and the script name with "py" substituted for the extension.
args=( "$@" )
dir="${0%/*}"
dir="$(cd -- "$(dirname "$0")" >/dev/null 2>&1; pwd -P)"
script="${0##*/}"
target="${script%.*}.py"