We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa6ce7a commit 26fd038Copy full SHA for 26fd038
scripts/build_distributables.sh
@@ -46,3 +46,16 @@ echo "Cleared the dist/ folder."
46
47
mv $GOPATH/bin/* dist/
48
echo "Moved all distributable folders to the dist/ directory."
49
+
50
+#=======#
51
+# We change the permissions for all generated files to 777.
52
53
+for folder_to_check in $(ls dist/); do
54
55
+ files_to_rename=$(ls dist/$folder_to_check)
56
+ for file_to_rename in ${files_to_rename[@]}; do
57
+ chmod 777 dist/${folder_to_check}/${file_to_rename}
58
+ done
59
60
+done
61
+echo "Finished modifying permissions for all generated files."
0 commit comments