-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9877b4f
commit dafc767
Showing
4 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#!/usr/bin/env sh | ||
#!/bin/sh | ||
|
||
# Exit if any subcommand fails | ||
set -e | ||
|
||
VERSION=$(ruby -r ./lib/administrate/version.rb -e "puts Administrate::VERSION") | ||
yarn run build | ||
yarn run build:css | ||
gem build administrate.gemspec | ||
gem install administrate-${VERSION}.gem | ||
gem install "administrate-${VERSION}.gem" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/usr/bin/env sh | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
if ! gem list foreman -i --silent; then | ||
echo "Installing foreman..." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env sh | ||
#!/bin/sh | ||
|
||
"$(dirname "$0")"/dev -m js=1,css=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters