diff options
author | Dave Heller <hellerda@us.ibm.com> | 2018-08-28 00:08:05 -0400 |
---|---|---|
committer | Dave Heller <hellerda@us.ibm.com> | 2018-08-28 00:08:05 -0400 |
commit | faed379383fac2ff2d60800096917ea04c7a44e0 (patch) | |
tree | 229c5524a5d2df97b50e5e0b620ce0720691f957 | |
parent | 580ef889bcefceafb821c45a016f7351cbcd5845 (diff) | |
download | sb-signing-utils-faed379383fac2ff2d60800096917ea04c7a44e0.tar.gz sb-signing-utils-faed379383fac2ff2d60800096917ea04c7a44e0.zip |
Make SB_KEEP_CACHE=false by default
It makes sense to do this for environments outside of op-build. Under
op-build it's helpful to keep cache by default, so now will set it
explicitly under op-build.
Signed-off-by: Dave Heller <hellerda@us.ibm.com>
-rwxr-xr-x | crtSignedContainer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crtSignedContainer.sh b/crtSignedContainer.sh index c59c092..4c264b1 100755 --- a/crtSignedContainer.sh +++ b/crtSignedContainer.sh @@ -464,7 +464,7 @@ done # : "${TMPDIR:=/tmp}" : "${SB_SCRATCH_DIR:=$TMPDIR}" -: "${SB_KEEP_CACHE:=true}" +: "${SB_KEEP_CACHE:=false}" : "${LABEL:=IMAGE}" moniker="SIGNTOOL" |