Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 457 Bytes

SC2169.md

File metadata and controls

13 lines (7 loc) · 457 Bytes

Pattern: Use of unsupported [[ .. ]] for dash

Issue: -

Description

You are writing a script for dash, but you're using a feature that dash doesn't support (in this case, bash/ksh style [[ .. ]] conditions).

See Ubuntu's DashAsBinSh migration guide for how to make bash-specific scripts dash-compatible.

Further Reading