Skip to content

Commit

Permalink
Tweak paths
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Apr 25, 2024
1 parent 9fa62dc commit cbd360a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions make-it/splitVireoWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@
'use strict';

var fs = require('fs');
var path = require('path');
var wrapperFile = process.argv[2];
var prejsFile = process.argv[3];
var postjsFile = process.argv[4];
var prejsFileIn = process.argv[3];
var postjsFileIn = process.argv[4];
var prejsFile = path.resolve(__dirname + 'make-it', prejsFileIn);
var postjsFile = path.resolve(__dirname + 'make-it', postjsFileIn);
console.log('Splitting wrapper file ', wrapperFile, 'into prejs file', prejsFile, 'and postjs file', postjsFile);

var wrapper = fs.readFileSync(wrapperFile, {
Expand Down

0 comments on commit cbd360a

Please sign in to comment.