Files
mostlymatter/scripts/setup_go_work.sh
Giorgi Bochorishvili 902f7296d2 Add playbooks product support.
Add new methods to post service
2022-11-22 07:47:07 +04:00

21 строка
451 B
Bash
Исполняемый файл

#!/bin/bash
if [[ $1 != "true" ]] ;
then
echo "Creating a go.work file"
txt="go 1.18\n\nuse ./\n"
if [ "$BUILD_ENTERPRISE_READY" == "true" ]
then
txt="${txt}use ../enterprise\n"
fi
if [ "$BUILD_BOARDS" == "true" ]
then
txt="${txt}use ../focalboard/server\nuse ../focalboard/mattermost-plugin\n"
fi
txt="${txt}use ../mattermost-plugin-playbooks\n"
printf "$txt" > "go.work"
fi