Skip to content

Check AGPL code doesn't import enterprise #3602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 19, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
use error/log instead of echo/exit
Signed-off-by: Spike Curtis <spike@coder.com>
  • Loading branch information
spikecurtis committed Aug 19, 2022
commit dd3ed736eadcf78ced48bd72ee27e4ace91802fe
6 changes: 2 additions & 4 deletions scripts/check_enterprise_imports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ find . -regex ".*\.go" | grep -v "./enterprise" | xargs grep -n "github.com/code
status=$?
set -e
if [ $status -eq 0 ]; then
echo "AGPL code cannot import enterprise!"
exit 1
error "AGPL code cannot import enterprise!"
fi
echo "AGPL imports OK"
exit 0
log "AGPL imports OK"