Skip to content
This repository has been archived by the owner on Jul 21, 2019. It is now read-only.

Commit

Permalink
Fixed an issue
Browse files Browse the repository at this point in the history
  • Loading branch information
teejee2008 committed May 3, 2018
1 parent 51147d9 commit 293dc0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Gtk/ManagerBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ public class ManagerBox : Gtk.Box {
cmd += " --redist";
}

cmd += " --basepath '%s'".printf(escape_single_quote(basepath);
cmd += " --basepath '%s'".printf(escape_single_quote(basepath));

parent_window.execute(cmd);

Expand Down Expand Up @@ -1084,7 +1084,7 @@ public class ManagerBox : Gtk.Box {
// cmd += " --redist";
//}

cmd += " --basepath '%s'".printf(escape_single_quote(basepath);
cmd += " --basepath '%s'".printf(escape_single_quote(basepath));

parent_window.execute(cmd);

Expand Down
4 changes: 2 additions & 2 deletions src/Gtk/SettingsBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ public class SettingsBox : Gtk.Box {
cmd += " --redist";
}

cmd += " --basepath '%s'".printf(escape_single_quote(basepath);
cmd += " --basepath '%s'".printf(escape_single_quote(basepath));

cmd += get_cmd_options();

Expand Down Expand Up @@ -547,7 +547,7 @@ public class SettingsBox : Gtk.Box {
cmd += " --redist";
}

cmd += " --basepath '%s'".printf(escape_single_quote(basepath);
cmd += " --basepath '%s'".printf(escape_single_quote(basepath));

cmd += get_cmd_options();

Expand Down

0 comments on commit 293dc0a

Please sign in to comment.