mirror of
https://github.com/aljazceru/shurikenpi.io.git
synced 2025-12-17 06:04:23 +01:00
20 lines
513 B
Bash
Executable File
20 lines
513 B
Bash
Executable File
#!/bin/bash
|
|
|
|
build_installer(){
|
|
# Header
|
|
echo "#!/bin/bash" > install.sh
|
|
echo "# File generated automatically by build.sh. Do not modify" >> install.sh
|
|
echo "# DO NOT MODIFY" >> install.sh
|
|
echo "" >> install.sh
|
|
|
|
cat Scripts/global.sh >> install.sh
|
|
echo -e "\n\n" >> install.sh
|
|
cat Scripts/utils.sh >> install.sh
|
|
echo -e "\n\n" >> install.sh
|
|
cat Scripts/installer.sh >> install.sh
|
|
chmod +x install.sh
|
|
}
|
|
|
|
echo -e "Script to build Shuriken"
|
|
build_installer
|
|
echo "Finished" |