add a deployment note in regards to sourcing the deployment configurations on windows + git bash setups

This commit is contained in:
Mamadou Babaei
2024-07-29 15:07:22 +02:00
parent db20362783
commit f0a986e623
+7 -1
View File
@@ -62,4 +62,10 @@ If you're building an unstable handbook for the next release, please make sure:
### make deploy ### make deploy
This tatget is used to build and upload the final draft of the handbook. This tatget first runs the <code>clean</code> target and then the <code>build</code> target; and only then attempts to upload the content. Thus, any rule that applies to the <code>build</code> target, will apply to this target as well. This tatget is used to build and upload the final draft of the handbook. This tatget first runs the <code>clean</code> target and then the <code>build</code> target; and only then attempts to upload the content. Thus, any rule that applies to the <code>build</code> target, will apply to this target as well.
_Noete_: Building on Windows requires sourcing the deployment configuration file, otherwise the deployment will fail; e.g.:
```sh
$ source /c/Users/mamadou/AppData/Local/SenseGlove/ue-handbook/deploy.conf && make deploy
```