11 lines
448 B
Bash
11 lines
448 B
Bash
|
#!/bin/bash
|
||
|
cd Timelapse
|
||
|
rm -rf ../deb/usr/share/TimelapseNow/bin/
|
||
|
cp -r bin/Desktop/linux-unpacked/ ../deb/usr/share/TimelapseNow/bin/
|
||
|
bash ../deb-arch.sh amd64
|
||
|
rm -rf ../deb/usr/share/TimelapseNow/bin/
|
||
|
cp -r bin/Desktop/linux-armv7l-unpacked/ ../deb/usr/share/TimelapseNow/bin/
|
||
|
bash ../deb-arch.sh armhf
|
||
|
rm -rf ../deb/usr/share/TimelapseNow/bin/
|
||
|
cp -r bin/Desktop/linux-arm64-unpacked/ ../deb/usr/share/TimelapseNow/bin/
|
||
|
bash ../deb-arch.sh arm64
|