Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
fix: whoops, actually change sf install path for tarballs
Browse files Browse the repository at this point in the history
  • Loading branch information
RodEsp committed Oct 29, 2021
1 parent 773e576 commit cb32ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/include-sf.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const npmGlobalInstallPath = shelljs.exec('npm list -g --depth 0 | head -1').std
const sfGlobalPath = path.join(npmGlobalInstallPath, 'node_modules', '@salesforce', 'cli');

console.log(`---- Including SF ----`);
console.log(` Moving sf from ${sfGlobalPath} to ./sf-cli`);
shelljs.mv('-f', sfGlobalPath, 'sf-cli');
console.log(`Moving sf from ${sfGlobalPath} to ./sf`);
shelljs.mv('-f', sfGlobalPath, 'sf');

const sfUnixPath = 'sf/bin/run';
const sfBin = path.join('bin', 'sf');
Expand Down

0 comments on commit cb32ed3

Please sign in to comment.