Skip to content

Commit

Permalink
download samples to the current working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
endixk committed Aug 7, 2023
1 parent 64ac3ee commit fec70de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/envs/config/PathConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class PathConfig {
/* Environment */
public static final String CurrPath = Paths.get("").toAbsolutePath().toString() + File.separator;
public static final String CurrPath = Paths.get("").toAbsolutePath() + File.separator;
public static final String JarPath = new File(UFCGMainPipeline.class.getProtectionDomain().getCodeSource().getLocation().getPath()).getParent() + File.separator;
public static String EnvironmentPath = "";
public static boolean EnvironmentPathSet = false;
Expand Down

0 comments on commit fec70de

Please sign in to comment.