aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-16 16:35:51 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-16 20:25:15 +0530
commitbe46b3a6fd341c38d227ab846ecc130e2897133b (patch)
tree77cd982e0ae8a7b3cffb2618ed48142a45e31991 /CONTRIBUTING.md
parentNew Crowdin updates (#1421) (diff)
downloadferdium-app-be46b3a6fd341c38d227ab846ecc130e2897133b.tar.gz
ferdium-app-be46b3a6fd341c38d227ab846ecc130e2897133b.tar.zst
ferdium-app-be46b3a6fd341c38d227ab846ecc130e2897133b.zip
Updated documentation with gDrive url and other bits related to nightlies. [skip ci]
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d4a3ef02c..5f901364e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -142,14 +142,15 @@ The above will place all the built artifacts into the `/ferdi` folder within the
142If you want to copy them outside of the image, simply mount a volume into a different location, and copy all files from `/ferdi` into the mounted folder (`/ferdi-out` in the example command below). 142If you want to copy them outside of the image, simply mount a volume into a different location, and copy all files from `/ferdi` into the mounted folder (`/ferdi-out` in the example command below).
143 143
144```bash 144```bash
145mkdir -p tmp-out 145DATE=`date +"%Y-%b-%d-%H-%M"`
146docker run -v $PWD/tmp-out:/ferdi-out -it ferdi-package sh 146mkdir -p ~/Downloads/$DATE
147docker run -e GIT_SHA=`git rev-parse --short HEAD` -v ~/Downloads/$DATE:/ferdi-out -it ferdi-package sh
147# inside the container: 148# inside the container:
148mv /ferdi/Ferdi-5.6.0-nightly.18.AppImage /ferdi-out/Ferdi-`date +%Y-%b-%d`.AppImage 149mv /ferdi/Ferdi-*.AppImage /ferdi-out/Ferdi-$GIT_SHA.AppImage
149mv /ferdi/ferdi-5.6.0-nightly.18.tar.gz /ferdi-out/Ferdi-`date +%Y-%b-%d`.tar.gz 150mv /ferdi/ferdi-*.tar.gz /ferdi-out/Ferdi-$GIT_SHA.tar.gz
150mv /ferdi/ferdi-5.6.0-nightly.18.x86_64.rpm /ferdi-out/Ferdi-`date +%Y-%b-%d`.x86_64.rpm 151mv /ferdi/ferdi-*.x86_64.rpm /ferdi-out/Ferdi-x86_64-$GIT_SHA.rpm
151mv /ferdi/ferdi_5.6.0-nightly.18_amd64.deb /ferdi-out/Ferdi_`date +%Y-%b-%d`_amd64.deb 152mv /ferdi/ferdi_*_amd64.deb /ferdi-out/Ferdi-amd64-$GIT_SHA.deb
152mv /ferdi/ferdi /ferdi-out/Ferdi_`date +%Y-%b-%d` 153mv /ferdi/ferdi /ferdi-out/Ferdi-$GIT_SHA
153``` 154```
154 155
155### Start development app 156### Start development app