@autofleet/cli 1.0.13 → 1.0.14
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/bin/utils/index.js +1 -1
- package/package.json +1 -1
package/bin/utils/index.js
CHANGED
|
@@ -21,7 +21,7 @@ const connectToCluster = async (clusterName) => {
|
|
|
21
21
|
if (!command) {
|
|
22
22
|
throw new Error(`Cluster name ${clusterName} does not exist!`);
|
|
23
23
|
}
|
|
24
|
-
await terminalCommand(
|
|
24
|
+
await terminalCommand(command);
|
|
25
25
|
};
|
|
26
26
|
export const connectAndGetPrefix = async ({ clusterName, variationId }) => {
|
|
27
27
|
await connectToCluster(clusterName);
|