@c4t4/heyamigo 0.1.1 → 0.1.2
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/dist/cli/setup.js +1 -2
- package/package.json +1 -1
package/dist/cli/setup.js
CHANGED
|
@@ -393,8 +393,7 @@ export async function runSetup() {
|
|
|
393
393
|
validate: (v) => {
|
|
394
394
|
if (!v || !v.trim())
|
|
395
395
|
return 'Required';
|
|
396
|
-
|
|
397
|
-
if (!ex(v.trim()))
|
|
396
|
+
if (!existsSync(v.trim()))
|
|
398
397
|
return 'Folder not found';
|
|
399
398
|
return undefined;
|
|
400
399
|
},
|