Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shebangs to scripts #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions _scripts/ecstatic_gen
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/bin/bash
./pillar export --to='html'
#!/usr/bin/env bash

./pillar export --to='html'
2 changes: 2 additions & 0 deletions _scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

wget --quiet -O - get.pharo.org/61+vm | bash
REPO=http://smalltalkhub.com/mc/RMoD/Ecstatic/main
./pharo Pharo.image config $REPO ConfigurationOfEcstatic --install=0.9.1 --group='ALL'
4 changes: 3 additions & 1 deletion _scripts/publish-gh-pages.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

git add *
git commit -m "publishing"
git checkout gh-pages
Expand All @@ -12,4 +14,4 @@ git commit -m "deploy"
git push

git checkout master
git checkout master -- _site
git checkout master -- _site
2 changes: 1 addition & 1 deletion _scripts/publish-github-io.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

SOURCES_BRANCH=${1:-source}
DEPLOY_BRANCH=${2:-master}
Expand Down