Skip to content

Commit

Permalink
Should fix #2
Browse files Browse the repository at this point in the history
* Started using INIT_CWD env variable to get to the base folder.
* CLRF --> LF
  • Loading branch information
linuxgemini committed Mar 3, 2018
1 parent 243cd05 commit 31e172c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DontRunMe.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const detectNewline = require("detect-newline");
const crypto = require("crypto"); // define crypto
const fs = require("fs"); // define filesys
let projectRoot = require("path").dirname(require.main.filename);
let projectRoot = process.env.INIT_CWD;
let fetchedKey, fetchedHMAC, convertedConfig = false;

const exit = (msg) => {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basic256.js",
"version": "1.2.0",
"version": "1.2.1",
"description": "A basic encryption/decryption script/API for resting data for Node.js users.",
"engines": {
"node": ">=8.4.0"
Expand Down

0 comments on commit 31e172c

Please sign in to comment.