mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 05:19:13 +00:00
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# ci_post_clone.sh
|
|
# ShhShell
|
|
#
|
|
# Created by neon443 on 07/06/2025.
|
|
#
|
|
|
|
#working dir starts at /Volumes/workspace/repository/ci_scripts
|
|
cd ..
|
|
mkdir Frameworks; cd Frameworks
|
|
curl -o frameworks.tar.xz https://files.catbox.moe/hd2s6n.xz
|
|
tar xzf frameworks.tar.xz
|
|
rm frameworks.tar.xz
|