@akanjs/config 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.
@@ -115,7 +115,7 @@ const getDockerRunScripts = (runs) => {
115
115
  return `RUN ${run}`;
116
116
  else
117
117
  return Object.entries(run).map(
118
- ([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script} fi`
118
+ ([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script}; fi`
119
119
  ).join("\n");
120
120
  });
121
121
  };
@@ -80,7 +80,7 @@ const getDockerRunScripts = (runs) => {
80
80
  return `RUN ${run}`;
81
81
  else
82
82
  return Object.entries(run).map(
83
- ([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script} fi`
83
+ ([arch, script]) => `RUN if [ "$TARGETARCH" = "${arch}" ]; then ${script}; fi`
84
84
  ).join("\n");
85
85
  });
86
86
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/config",
3
- "version": "0.9.15",
3
+ "version": "0.9.16",
4
4
  "sourceType": "module",
5
5
  "module": {
6
6
  "access": "public"