Skip to content

Commit

Permalink
The -f flag makes rm not error if the file doesn't exist.
Browse files Browse the repository at this point in the history
  • Loading branch information
wenxindongwork committed Nov 25, 2024
1 parent 428b057 commit a4dc2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/solutions_team/configs/tensorflow/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


CMD_PRINT_TF_VERSION = "python3 -c \"import tensorflow; print('Running using TensorFlow Version: ' + tensorflow.__version__)\""
CMD_REMOVE_LIBTPU_LOCKFILE = "sudo rm /tmp/libtpu_lockfile"
CMD_REMOVE_LIBTPU_LOCKFILE = "sudo rm -f /tmp/libtpu_lockfile"
CMD_INSTALL_KERAS_NIGHTLY = (
"pip install --upgrade --no-deps --force-reinstall tf-keras-nightly"
)
Expand Down

0 comments on commit a4dc2c8

Please sign in to comment.