Skip to content

Commit

Permalink
chore: Fix installation of bin-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Jan 25, 2024
1 parent 00af385 commit 50eee4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public final void copyBinResource(String resourceFile) {
// batch files with different contents, this could cause incorrect behavior and likely
// error messages once Windows resumes batch file execution once fcli has finished.
var fullResourceFile = getFullResourceFile(resourceFile);
FileUtils.copyResource(fullResourceFile, getBinPath(), StandardCopyOption.REPLACE_EXISTING);
FileUtils.copyResource(fullResourceFile, targetFilePath, StandardCopyOption.REPLACE_EXISTING);
}
}

Expand Down

0 comments on commit 50eee4f

Please sign in to comment.