We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42c94ca commit b9bdedeCopy full SHA for b9bdede
README.md
@@ -2,6 +2,11 @@
2
3
SwiftPackage Plugin for executing arbitrary ShellScript.
4
5
+## Feature
6
+- BuildToolPlugin: RunScriptPlugin
7
+- CommandPlugin: RunScriptCommandPlugin
8
+- XcodeBuildToolPlugin: RunScriptPlugin
9
+- XcodeCommandPlugin: RunScriptCommandPlugin
10
11
## Usage
12
Place the file named `runscript.yml`(or `.runscript.yml`) in the root of the project.
@@ -35,6 +40,10 @@ build: # build Command
35
40
- name: "Hello"
36
41
script: "echo Hello"
37
42
43
+command: # Command Plugin
44
+ - name: "Hello from Command"
45
+ script: "echo 'Hello from Command'"
46
+
38
47
all: # run in `prebuild`, `build`...
39
48
- name: "Hello(all)"
49
script: "echo Hello(all)"
0 commit comments