Files
yankee-downloader-desktop/provision/installs/download-code.bash

43 lines
538 B
Bash
Raw Normal View History

2025-03-09 14:25:47 -04:00
#!/bin/bash
2025-03-09 14:38:32 -04:00
set -e
set -x
2025-03-09 14:25:47 -04:00
echo "##"
echo "## launch > yankee > download consumer code"
echo "##"
2025-03-10 11:24:49 -04:00
##
2025-03-09 14:25:47 -04:00
cd /
2025-03-09 14:38:32 -04:00
rm -rf /yankee-consumer
2025-03-09 14:25:47 -04:00
rm -rf /yankee-gnome-fire-consumer
2025-03-10 11:24:49 -04:00
git clone https://code.softwareshinobi.com/yankee/yankee-gnome-fire-consumer.git yankee-consumer
2025-03-09 14:25:47 -04:00
2025-03-10 11:24:49 -04:00
cd yankee-consumer
2025-03-09 14:25:47 -04:00
2025-03-10 11:24:49 -04:00
chmod +x *.bash
2025-03-09 14:25:47 -04:00
2025-03-10 11:24:49 -04:00
ls -lha
##
cd /
rm -rf /yankee-publisher
rm -rf /yankee-gnome-fire-publisher
git clone https://code.softwareshinobi.com/yankee/yankee-gnome-fire-publisher.git yankee-publisher
cd yankee-publisher
2025-03-09 14:25:47 -04:00
2025-03-09 14:38:32 -04:00
chmod +x *.bash
2025-03-09 14:25:47 -04:00
ls -lha
2025-03-10 11:24:49 -04:00
##