Skip to content

Commit

Permalink
darwin: fix typos in install scripts
Browse files Browse the repository at this point in the history
fixes some issues in my commits in:

- basic_cmds
- network_cmds
  • Loading branch information
matthewbauer committed Jan 3, 2019
1 parent ad4ec5a commit f283145
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -15,7 +15,7 @@ appleDerivation rec {
installPhase = ''
for f in Products/Release/*; do
if [ -f $f ]; then
install -D $file $out/usr/bin/$(basename $f)
install -D $f $out/usr/bin/$(basename $f)
fi
done
Expand Down
Expand Up @@ -23,7 +23,7 @@ appleDerivation rec {
for f in Products/Release/*; do
if [ -f $f ]; then
install -D $file $out/bin/$(basename $f)
done
fi
done
for n in 1 5; do
Expand Down

0 comments on commit f283145

Please sign in to comment.