Skip to content
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

fixed mac install script #146

Merged
Merged
Changes from all commits
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
6 changes: 6 additions & 0 deletions config.nims
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,18 @@ proc configure() =
else:
cpFile(thisDir() & "/config/distros.toml", configpath & "distros.toml")

task clean, "Cleans existing build":
echo "\e[36;1mCleaning\e[0;0m existing build"
rmFile("{thisDir()}/bin/catnap")

task release, "Builds the project in release mode":
cleanTask()
echo "\e[36;1mBuilding\e[0;0m in release mode"
exec &"./scripts/git-commit-id.sh"
compile(true)

task debug, "Builds the project in debug mode":
cleanTask()
echo "\e[36;1mBuilding\e[0;0m in debug mode"
exec &"./scripts/git-commit-id.sh"
compile(false)
Expand Down