Moving further down up the path. See previous commit.

This commit is contained in:
sixteenmillimeter 2020-07-07 12:07:00 -04:00
parent a379e4b086
commit efc6d0ef03
1 changed files with 2 additions and 2 deletions

View File

@ -4,13 +4,13 @@ const package = require('../package.json')
// Step 1: Instantiate the MSICreator
const msiCreator = new MSICreator({
appDirectory: path.resolve(__dirname, '..', 'dist', 'mcopy-win32-x64'),
appDirectory: path.resolve(__dirname, '..', '..', 'dist', 'mcopy-win32-x64'),
description: 'mcopy optical printer GUI',
exe: 'mcopy',
name: 'mcopy',
manufacturer: 'sixteenmillimeter.com',
version: package.version,
outputDirectory: path.resolve(__dirname, '..', 'dist')
outputDirectory: path.resolve(__dirname, '..', '..', 'dist')
});
async function build () {