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

add local.rebar/local.hex, as if this hasn't been set the command will fail #3606

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
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
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,9 @@ task getQuoterDeps(dependsOn: getQuoter) {
doLast {
exec {
workingDir quoterUnzippedPath
executable "mix"
args "deps.get"
commandLine 'mix', 'do', 'local.rebar', '--force,', 'local.hex', '--force,', 'deps.get'
// standardOutput = System.out
// errorOutput = System.err
}
}
}
Expand All @@ -223,8 +224,9 @@ task releaseQuoter(dependsOn: getQuoterDeps) {
if (!file.canExecute()) {
exec {
workingDir quoterUnzippedPath
executable "mix"
args "release"
commandLine 'mix', 'do', 'local.rebar', '--force,', 'local.hex', '--force,', 'deps.get,', 'release'
// standardOutput = System.out
// errorOutput = System.err
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Available idea versions:
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
baseVersion=17.0.1
baseVersion=18.0.0
ideaVersion=2024.1
# MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer
javaVersion=17
Expand Down
Loading