All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.shellcheck.rules.shellcheck.SC2225.html Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version

This cp has no destination. Check the arguments.

Problematic code

cp "$file $dir"

Correct code

cp "$file" "$dir"

Rationale

ShellCheck found a cp command with a single parameter. This may be because the source and destination was accidentally merged into a single argument, or because the line was broken in an invalid way.

Fix the cp statement by correctly specifying both source and destination.

Exceptions

None





© 2015 - 2025 Weber Informatics LLC | Privacy Policy