From 4e48a7adbbfc25c4c968d7a48bf6ecc0b4edd9fa Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Wed, 9 Oct 2019 15:45:51 +0100 Subject: [PATCH] fix(composer.sls): fix `salt-lint` errors ```bash Examining php/composer.sls of type state [210] Numbers that start with `0` should always be encapsulated in quotation marks php/composer.sls:27 - mode: 0755 ``` --- php/composer.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/composer.sls b/php/composer.sls index 2b61c6f..9640537 100644 --- a/php/composer.sls +++ b/php/composer.sls @@ -24,7 +24,7 @@ include: get-composer: file.managed: - name: {{ php.lookup.pkgs.temp_dir }}/installer - - mode: 0755 + - mode: '0755' - unless: test -f {{ install_file }} - source: https://getcomposer.org/installer - source_hash: https://composer.github.io/installer.sig