mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
10 lines
263 B
Bash
10 lines
263 B
Bash
#!/bin/bash
|
|
|
|
echo "Running the build!"
|
|
|
|
if [[ "$CLONE_PRO" != "false" ]]; then
|
|
git clone "https://konnorrogers:$GITHUB_ACCESS_TOKEN@github.com/shoelace-style/webawesome-pro" packages/webawesome-pro
|
|
fi
|
|
|
|
cd packages/webawesome-pro && npm install && npm run build
|