When we pass false to force and no_lease, it is cast as a
String. Unfortunately, the string 'false' is truth-y, so we've been
pushing with --force since we started using these inputs.
Let's fix that by making sure we interpret string arguments as intended.
When we pass
false
toforce
andno_lease
, it is cast as aString
. Unfortunately, the string'false'
is truth-y, so we've been pushing with--force
since we started using these inputs.Let's fix that by making sure we interpret string arguments as intended.