8 lines
246 B
Bash
Executable file
8 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
|
|
curl -L https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/develop/download?job=build-production -o soapbox.zip
|
|
unzip soapbox.zip -d ./static
|
|
mv ./static/static/* ./static/
|
|
mv ./static/static/.* ./static/
|
|
rm ./static/static -r
|
|
|