Skip to content

Commit

Permalink
Fix Follow Symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoellnitz committed Jul 26, 2024
1 parent ec9d6a7 commit 17bb83f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/trackdown-hook.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
DIR=$(dirname $(readlink $0))
DIR=$(dirname $(readlink -f $0))
. $DIR/trackdown-lib.sh
CWD=`pwd`
windUp trackdown
Expand Down
2 changes: 1 addition & 1 deletion bin/trackdown-jira-2fa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
DIR=$(dirname $(readlink $0))
DIR=$(dirname $(readlink -f $0))
CWD=`pwd`

. $DIR/trackdown-lib.sh
Expand Down
2 changes: 1 addition & 1 deletion bin/trackdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

CMD=$1
ISSUES=$2
DIR=$(dirname $(readlink $0))
DIR=$(dirname $(readlink -f $0))
CWD=`pwd`

. $DIR/trackdown-lib.sh
Expand Down

0 comments on commit 17bb83f

Please sign in to comment.