Skip to content

Commit

Permalink
Update LDPlayer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
drnxloc authored Feb 6, 2021
1 parent ac51aff commit 84836c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib_Auto_LDPlayer/LDPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ public void zoomOut(string param, string NameOrId)

public void Pull(string param, string NameOrId, string remote_file_path, string local_file_path)
{
ExecuteLD(string.Format(@"pull --{0} {1} --remote {2} --local ""{3}""", param, NameOrId, remote_file_path, local_file_path));
ExecuteLD(string.Format(@"pull --{0} {1} --remote ""{2}"" --local ""{3}""", param, NameOrId, remote_file_path, local_file_path));
}

public void Push(string param, string NameOrId, string remote_file_path, string local_file_path)
{
ExecuteLD(string.Format(@"push --{0} {1} --remote {2} --local ""{3}""", param, NameOrId, remote_file_path, local_file_path));
ExecuteLD(string.Format(@"push --{0} {1} --remote ""{2}"" --local ""{3}""", param, NameOrId, remote_file_path, local_file_path));
}

public void BackupApp(string param, string NameOrId, string Package_Name, string file_path)
Expand Down

0 comments on commit 84836c1

Please sign in to comment.