8000 Releases · blunt1337/wtfcmd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: blunt1337/wtfcmd

v1.2.1

04 Jun 13:33
Compare
Choose a tag to compare

v1.1.1

30 May 12:46
Compare
Choose a tag to compare

v1.1.0

29 Jan 22:46
Compare
Choose a tag to compare

Add stopOnError: true on command definition

- name: my-command
  cmd: command1; command2
  stopOnError: true
  desc: Run command1, and command2 if command1 succeeded

Add envs object on command definition

- name: my-command
  cmd: npm run start
  envs:
    NODE_ENV: production

Add template function {{ setEnv NAME "value" }}

- name: my-command
  cmd: >
    {{ setEnv "NODE_ENV" "production" }};
    {{ setEnv .envName .envValue}};
    {{ setEnv "RUNTIME_VALUE" }}"My runtime value";

Add some os functions like {{ if isBash }} and {{ if isPowershell }}

- name: my-command
  cmd: {{ if isBash }}echo "Hi linux user"{{ else }}echo "Hi windows user"{{ end }}

Unix update command: sudo -- sh -c 'rm -f /usr/local/bin/wtf && wget https://github.com/blunt1337/wtfcmd/releases/download/v1.1.0/wtf.linux -O /usr/local/bin/wtf && chmod +x /usr/local/bin/wtf'

v1.0.0

03 Oct 09:41
Compare
Choose a tag to compare

Changes:

  • Compile for 64bits by default
  • When the flag --help, -h, -H or -? is not defined in the yaml command, it will run the built-in help
  • Added WSL support

v0.0.8

03 Apr 08:39
Compare
Choose a tag to compare

Fix/improved builtin functions.
More info on http://wtf.blunt.sh/template

v0.0.7

09 Mar 08:31
Compare
Choose a tag to compare

New is_array and json features

v0.0.6

06 Feb 13:36
Compare
Choose a tag to compare
Coffee fixes

v0.0.5

06 Feb 08:01
Compare
Choose a tag to compare
Fix travis, seriously...

v0.0.4

29 Sep 11:22
Compare
Choose a tag to compare
Close .wtfcmd file after parsing it, to prevent file lock on windows

v0.0.3

27 Apr 08:30
Compare
Choose a tag to compare
0