Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit af9ed33

Browse files
authored
Merge pull request #41 from microsoft/clantz/ptrace
Switch postCreateCommand to strings
2 parents 30f79f4 + 3f29a7f commit af9ed33

File tree

44 files changed

+56
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+56
-54
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
* text=auto eol=lf
2+
*.{cmd,[cC][mM][dD]} text eol=crlf
3+
*.{bat,[bB][aA][tT]} text eol=crlf

containers/azure-cli/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
// "appPort": [],
1010

1111
// Uncomment the next line to run commands after the container is created.
12-
// "postCreateCommand": ["az --version"]
12+
// "postCreateCommand": "az --version"
1313
}

containers/azure-functions-dotnetcore-2.1/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
],
99

1010
// Uncomment the next line to run commands after the container is created.
11-
// "postCreateCommand": ["dotnet restore"]
11+
// "postCreateCommand": "dotnet restore"
1212
}

containers/azure-functions-dotnetcore-latest/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
],
99

1010
// Uncomment the next line to run commands after the container is created.
11-
// "postCreateCommand": ["dotnet restore"]
11+
// "postCreateCommand": "dotnet restore"
1212
}

containers/azure-functions-java-8/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
],
99

1010
// Uncomment the next line to run commands after the container is created.
11-
// "postCreateCommand": ["java -version"]
11+
// "postCreateCommand": "java -version"
1212
}

containers/azure-functions-node-8/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
],
99

1010
// Uncomment the next line to run commands after the container is created.
11-
// "postCreateCommand": ["npm install"]
11+
// "postCreateCommand": "npm install"
1212
}

containers/azure-functions-node-lts/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
],
99

1010
// Uncomment the next line to run commands after the container is created.
11-
// "postCreateCommand": ["npm install"]
11+
// "postCreateCommand": "npm install"
1212
}

containers/azure-machine-learning-python-3/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
// "appPort": [],
1212

1313
// Uncomment the next line to run commands after the container is created.
14-
// "postCreateCommand": ["pip install -r requirements.txt"]
14+
// "postCreateCommand": "pip install -r requirements.txt"
1515
}

containers/azure-terraform/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
// "appPort": [],
1414

1515
// Uncomment the next line to run commands after the container is created.
16-
// "postCreateCommand": ["terraform --version"]
16+
// "postCreateCommand": "terraform --version"
1717
}

containers/cpp/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
// "appPort": [],
1414

1515
// Uncomment the next line to run commands after the container is created.
16-
// "postCreateCommand": ["gcc -v"]
16+
// "postCreateCommand": "gcc -v"
1717
}

0 commit comments

Comments
 (0)