Skip to content

Commit

Permalink
fix(driverkit/utils): quietly remove driver versions
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
  • Loading branch information
leodido committed Sep 2, 2020
1 parent ad3fd19 commit 3bcf912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions driverkit/utils/cleanup
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ filterout_versions() {
printf "%s\t%s\n" "$i" "${all[$i]}"
if [[ ! " ${keep[*]}" =~ ${all[$i]} ]]; then
printf " \tremoving..."
yes N | JFROG_CLI_LOG_LEVEL=DEBUG jfrog bt vd --user "${user}" --key "${pass}" "falcosecurity/driver/kernel-module/${all[$i]}" # --quiet (remove yes)
yes N | JFROG_CLI_LOG_LEVEL=DEBUG jfrog bt vd --user "${user}" --key "${pass}" "falcosecurity/driver/ebpf-probe/${all[$i]}" # --quiet (remove yes)
JFROG_CLI_LOG_LEVEL=DEBUG jfrog bt vd --user "${user}" --key "${pass}" "falcosecurity/driver/kernel-module/${all[$i]}" --quiet
JFROG_CLI_LOG_LEVEL=DEBUG jfrog bt vd --user "${user}" --key "${pass}" "falcosecurity/driver/ebpf-probe/${all[$i]}" -quiet
unset -v 'all[$i]'
fi
done
Expand Down

0 comments on commit 3bcf912

Please sign in to comment.