Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pesterhazy committed Dec 30, 2017
1 parent 071a944 commit dade0c4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bin/unravel
Expand Up @@ -3,7 +3,7 @@
if [[ "${UNRAVEL_HOME-}" == "" ]]; then
self="${BASH_SOURCE[0]}"
if [[ -L "$self" ]]; then
self="$(redlink "$self")"
self="$(readlink "$self")"
fi
dir="$(dirname "$self")"
export UNRAVEL_HOME="${dir}/.."
Expand Down
10 changes: 10 additions & 0 deletions scripts/test-macos-release
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail && cd "$(dirname "${BASH_SOURCE[0]}")/.."

dir=~/unravel-test

rm -rf "$dir"
mkdir "$dir"
fn="$PWD/unravel.zip"
cd "$dir"
unzip "$fn"

0 comments on commit dade0c4

Please sign in to comment.