You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the eval task within a single given subproject and passing it --command='...' may be tedious.
We could find a simpler way to pass an expression in the command line.
The text was updated successfully, but these errors were encountered:
One way is to create a shell script or a function that does that.
For example, in the fish shell:
function geval
if test (count $argv) -lt 2
./gradlew eval --command="$argv[1]"
else if [ $argv[1] = ":" ]
./gradlew :eval --command="$argv[2]"
else
./gradlew "$argv[1]":eval --command="$argv[2]"
end
end
Running the
eval
task within a single given subproject and passing it--command='...'
may be tedious.We could find a simpler way to pass an expression in the command line.
The text was updated successfully, but these errors were encountered: