Skip to content

Commit

Permalink
Removed usage of realpath, since it is not available by default on ma…
Browse files Browse the repository at this point in the history
…cOS.
  • Loading branch information
bhayatus committed Jan 14, 2022
1 parent 7dabfad commit 031e557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aliaser
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version="1.3.0"
version="1.3.1"

function print_version {
echo $version
Expand Down Expand Up @@ -96,7 +96,7 @@ function main {
echo "ALIASES_FILE environment variable must be set"
exit 1
else
alias_file=$(realpath ${ALIASES_FILE})
alias_file=${ALIASES_FILE}
fi

operation=""
Expand Down

0 comments on commit 031e557

Please sign in to comment.