add and path

This commit is contained in:
leedongmyung 2025-01-05 08:07:21 +09:00
parent de2f91afb8
commit 83891ab6fa

View file

@ -17,6 +17,7 @@ String scriptPath = '';
String executablePath = '';
String appIdendifier = '';
String appName = '';
String and = '';
Future initialize(String name, String appID) async {
appIdendifier = appID;
@ -28,6 +29,7 @@ Future initialize(String name, String appID) async {
var debugPath = isDebug ? '.debug' : '';
userPath = Path.userPath;
dataPath = '${Path.dataPath}$debugPath';
and = Platform.isWindows ? ';' : '&&';
}
Map<String, List<String>?> envArguments(List<String> arguments) {