Skip to content
Snippets Groups Projects
Commit a2529a30 authored by Jack MacLauchlan CS2015's avatar Jack MacLauchlan CS2015
Browse files

turned off shellout

parent ee57d8dd
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ public class CommandInit implements Command {
public void createWorkTree() throws IOException {
ProcessBuilder builder = new ProcessBuilder();
builder.command("/home/jack/Documents/ddit/src/main/resources/ignoreStream.sh", "sh", "-c", "touch ayy.txt");
builder.command("/home/jack/Documents/ddit/src/main/resources/ignoreStream.sh", "sh", "-c");
builder.directory(new File(path));
Process process = builder.start();
......@@ -57,7 +57,7 @@ public class CommandInit implements Command {
git.checkout().setName(branch).call();
createWorkTree();
// createWorkTree();
// git.stashApply().setStashRef(stash.getName()).call();
} catch (IOException e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment