18 lines
285 B
Bash
18 lines
285 B
Bash
![]() |
#!/usr/bin/env nix-shell
|
||
|
#! nix-shell -p bash unzip -i bash
|
||
|
# shellcheck shell=bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
cd "themes"
|
||
|
|
||
|
wget "https://github.com/XXXMrG/archie-zola/archive/refs/heads/main.zip"
|
||
|
|
||
|
unzip "main.zip"
|
||
|
|
||
|
rm -rf "archie-zola"
|
||
|
|
||
|
mv "archie-zola-main" "archie-zola"
|
||
|
|
||
|
rm -f "main.zip"
|