Moved scripts to script dir
This commit is contained in:
parent
48e59ceb89
commit
b79aa152ab
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "CapRover-one-click-apps",
|
||||
"name": "caprover-one-click-apps",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
const path = require('path');
|
||||
const fs = require('fs-extra')
|
||||
|
||||
const pathOfPublic = path.join(__dirname, 'public');
|
||||
const PUBLIC = `public`
|
||||
const pathOfPublic = path.join(__dirname, '..', PUBLIC);
|
||||
|
||||
|
||||
function copyVersion(version) {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
const fs = require('fs-extra')
|
||||
|
||||
const PUBLIC = `public`
|
||||
const pathOfPublic = path.join(__dirname, PUBLIC);
|
||||
const pathOfPublic = path.join(__dirname, '..', PUBLIC);
|
||||
|
||||
|
||||
// validating version 2
|
||||
|
|
|
|||
Loading…
Reference in New Issue