You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
266 B
13 lines
266 B
3 months ago
|
#!/bin/sh
|
||
|
|
||
|
# Create Debian package
|
||
|
read -p "Press enter to create Debian package" nothing
|
||
|
clear
|
||
|
sh make_deb.sh
|
||
|
echo "Debian package created"
|
||
|
|
||
|
# Create Snap package
|
||
|
read -p "Press enter to create Snap package" nothing
|
||
|
clear
|
||
|
sh make_snap.sh
|
||
|
echo "Snap package created"
|