Skip to content

Commit

Permalink
fix typo that breaks code (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
adikari committed Dec 5, 2022
1 parent 7aafd5d commit 0d475e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion npm/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const install = () => {
throw new Error(`${tarFile} does not exist`)
}

cp.execSync(`tar -xf ${tarFile}.test -C ${tmpdir}`);
cp.execSync(`tar -xf ${tarFile} -C ${tmpdir}`);
fs.copyFileSync(path.join(tmpdir, binaryName), path.join(bin, binaryName));
} catch (error) {
console.error('failed to extract binary.', error.message)
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adikari/safebox",
"version": "1.2.1",
"version": "1.2.2",
"description": "A Fast and Flexible secret manager built with love by adikari in Go",
"main": "index.js",
"bin": "./run.js",
Expand Down

0 comments on commit 0d475e5

Please sign in to comment.