The enabled
check was actually was not being run by the test infrastructure.
Now that it is, we get the following error when trying to execute `test/compose/select-display-columns` ```sh ./enabled: 2: [: 4: unexpected operator ``` This commit fixes the enabled check
This commit is contained in:
parent
4d3a057a03
commit
e013385a58
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
[ $(echo -n "😄😊😉😍" | wc -m) == 4 ] && locale | grep LC_CTYPE | grep -qi 'utf-*8'
|
[ $(echo -n "😄😊😉😍" | wc -m) = '4' ] && locale | grep LC_CTYPE | grep -qi 'utf-*8'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user