@akanjs/cli 0.9.15 → 0.9.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -780,7 +780,7 @@ var getDockerRunScripts = (runs) => {
|
|
|
780
780
|
return `RUN ${run}`;
|
|
781
781
|
else
|
|
782
782
|
return Object.entries(run).map(
|
|
783
|
-
([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script} fi`
|
|
783
|
+
([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script}; fi`
|
|
784
784
|
).join("\n");
|
|
785
785
|
});
|
|
786
786
|
};
|
package/esm/index.js
CHANGED
|
@@ -760,7 +760,7 @@ var getDockerRunScripts = (runs) => {
|
|
|
760
760
|
return `RUN ${run}`;
|
|
761
761
|
else
|
|
762
762
|
return Object.entries(run).map(
|
|
763
|
-
([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script} fi`
|
|
763
|
+
([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script}; fi`
|
|
764
764
|
).join("\n");
|
|
765
765
|
});
|
|
766
766
|
};
|