mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
apk update && apk upgrade
|
|
apk add --no-cache g++ make git bash
|
|
cd /home && touch Gemfile.lock && \
|
|
rm Gemfile.lock && \
|
|
bundle install && \
|
|
bundle exec rake test:ci && \
|
|
cd www && bundle install && \
|
|
bundle exec jekyll build -d public
|
|
|
|
|