Browse Source

Throw on errors in installation script (#64)

remotes/origin/add-simple-redirecting-site
Gal Schlezinger 6 years ago committed by GitHub
parent
commit
50549b38d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .ci/install.sh

4
.ci/install.sh

@ -1,6 +1,8 @@ @@ -1,6 +1,8 @@
#!/bin/bash
OS=$(uname -a | cut -d" " -f 1)
set -e
OS=$(uname -s)
if [ "$OS" == "Darwin" ]; then
FILENAME="fnm-macos"

Loading…
Cancel
Save