Skip to content

Commit

Permalink
attempt 302
Browse files Browse the repository at this point in the history
  • Loading branch information
ianopolous committed Jan 20, 2025
1 parent cee6e1b commit 432ce8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packager/PackagePeergos.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static void main(String[] a) throws Exception {
System.out.println("artifact: " + artifact);
if (OS.equals("windows")) {
//Files.write(Paths.get("$env:GITHUB_ENV"), ("artifact=" + artifact).getBytes(), StandardOpenOption.APPEND);
runCommand("echo", "\"artifact="+artifact+"\"", "|", "Out-File", "-FilePath", "$env:GITHUB_ENV", "-Append");
runCommand("&", "echo", "\"artifact="+artifact+"\"", "|", "Out-File", "-FilePath", "$env:GITHUB_ENV", "-Append");
//runCommand("echo", "\"artifact="+artifact+"\"", ">>", "$env:GITHUB_ENV");
} else
runCommand("./setenv.sh", "artifact="+artifact);
Expand Down

0 comments on commit 432ce8f

Please sign in to comment.