Skip to content

Commit

Permalink
install: fix install script to work properly under ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin committed Jan 10, 2020
1 parent c10a67c commit 759f050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ how you launch Chrome for development.
Please use this one-liner to download and launch Dirac installer (by default it will install into `/usr/local/bin`):

```
curl -s https://raw.githubusercontent.com/binaryage/dirac/master/install > /tmp/dirac.install && bash /tmp/dirac.install
curl -s https://raw.githubusercontent.com/binaryage/dirac/master/install > /tmp/dirac.install && sudo bash /tmp/dirac.install
```

Alternatively you might want to download [dirac](https://github.com/binaryage/dirac/blob/master/dirac)
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ fi
echo "Installing Dirac CLI tool as '$TARGET'..."
mkdir -p "$(dirname "$TARGET")"
cp "$TMP_FILE" "$TARGET"
chmod +x "$TARGET"
chmod a+rx "$TARGET"

command -v $NAME

0 comments on commit 759f050

Please sign in to comment.