Skip to content
This repository has been archived by the owner on Jan 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #43 from Catfriend1/fixIssue35
Browse files Browse the repository at this point in the history
Properly determine current directory (fixes #35)
  • Loading branch information
IzzySoft authored Oct 7, 2018
2 parents c2303fe + d807c76 commit 5144001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adebar-cli
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ _OOPS_REPEAT=0 # whether to show the same "oops'd line" multiple times
declare -A OOPSES # array to store which lines where already reported

############################################[ Init ]###
BINDIR="${0%/*}"
BINDIR="$(dirname "$(readlink -mn "${0}")")"

# check parameters
if [[ "$1" = "-a" || "$1" = "--auto" ]]; then
Expand Down

0 comments on commit 5144001

Please sign in to comment.