Quellcode durchsuchen

composer update: fixed unless cmd by using -gt instead of >

(Command was not working on Ubuntu 16.04.)
Both Ubuntu's and RedHat's man pages of test list -gt, but not >
as their 'greater than' operator.
tags/v0.34.0
Alexander Weidinger vor 6 Jahren
Ursprung
Commit
fcb3d85f34
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +1
    -1
      php/composer.sls
  2. +1
    -1
      php/ng/composer.sls

+ 1
- 1
php/composer.sls Datei anzeigen

@@ -41,7 +41,7 @@ install-composer:
update-composer:
cmd.run:
- name: "{{ install_file }} selfupdate"
- unless: test $(date -d "60 days $({{ install_file }} --version | cut -d ' ' -f 4,5)" "+%s") \> $(date "+%s")
- unless: test $(date -d "60 days $({{ install_file }} --version | cut -d ' ' -f 4,5)" "+%s") -gt $(date "+%s")
- cwd: {{ php.local_bin }}
- env:
- HOME: {{ salt_user_home }}

+ 1
- 1
php/ng/composer.sls Datei anzeigen

@@ -49,7 +49,7 @@ install-composer:
update-composer:
cmd.run:
- name: "{{ install_file }} selfupdate"
- unless: test $(date -d "60 days $({{ install_file }} --version | cut -d ' ' -f 4,5)" "+%s") \> $(date "+%s")
- unless: test $(date -d "60 days $({{ install_file }} --version | cut -d ' ' -f 4,5)" "+%s") -gt $(date "+%s")
- cwd: {{ php.lookup.pkgs.local_bin }}
- env:
- HOME: {{ salt_user_home }}

Laden…
Abbrechen
Speichern