mirror of
https://github.com/miracle-wm-org/miracle-wm.git
synced 2024-11-30 02:09:10 +03:00
87b442f617
- A working `debian` folder that I can use to upload to a ppa on launchpad - Instructions on how to upload new builds. These instructions are very manual at the moment, but there exists another task to make this manual. I would prefer to do it manually for v0.2 at least.
14 lines
270 B
Bash
Executable File
14 lines
270 B
Bash
Executable File
if (( $# < 2 )); then
|
|
echo "Usage: ./publish-ppa.sh <NEW_VERSION> <DISTRO>"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
version=$1
|
|
distro=$2
|
|
dir=$(dirname $0)
|
|
cd $dir/..
|
|
rm -rf build
|
|
debuild -S -sd
|
|
cd $dir/../..
|
|
dput ppa:matthew-kosarek/miracle-wm miracle-wm_${version}-${distro}_source.changes |