buildBazelPackage: don't fail if the marker file doesn't exist

This was the intent of my previous change, but it didn't quite work
because the pipeline still exits false even if the file doesn't exist.
Oops.

+1 -1
+1 -1
pkgs/build-support/build-bazel-package/default.nix
··· 126 126 find $bazelOut/external -maxdepth 1 -type l | while read symlink; do 127 127 name="$(basename "$symlink")" 128 128 rm "$symlink" 129 - test -f "$bazelOut/external/@$name.marker" && rm "$bazelOut/external/@$name.marker" 129 + test -f "$bazelOut/external/@$name.marker" && rm "$bazelOut/external/@$name.marker" || true 130 130 done 131 131 132 132 # Patching symlinks to remove build directory reference