generated from NHSDigital/nhs-notify-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependancies asdf for make all fully automated (#12)
* asdf for zsh into post create command * change to ws folder * as scripts * zsh in post create * try bash interactive * trying without interactive * running with zsh * port forwards and make working * source before make
- Loading branch information
1 parent
5307a65
commit 2a6f921
Showing
3 changed files
with
23 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
rm -Rf ~/.asdf | ||
git clone https://github.com/asdf-vm/asdf.git ~/.asdf; | ||
chmod +x ~/.asdf/asdf.sh; | ||
echo '. $HOME/.asdf/asdf.sh' >> ~/.zshrc | ||
echo '. $HOME/.asdf/completions/asdf.bash' >> ~/.zshrc | ||
|
||
source ~/.zshrc | ||
|
||
echo 'asdf setup complete' | ||
|
||
make config | ||
|
||
jekyll --version && cd docs && bundle install | ||
|
||
echo 'jekyll setup complete' |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
source ~/.zshrc | ||
make config |