We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68bff89 commit 30be440Copy full SHA for 30be440
scripts/update-vendor.sh
@@ -8,12 +8,18 @@
8
# For each crate, the script expects a text file named `rsync.txt` in the crate's directory.
9
# The file should contain a list of proto files that should be synchronized from containerd.
10
11
-VERSION="v1.7.13"
+VERSION="v2.0.1"
12
13
set -x
14
15
# Download containerd source code.
16
wget https://github.com/containerd/containerd/archive/refs/tags/$VERSION.tar.gz -O containerd.tar.gz
17
+if [ $? -ne 0 ]; then
18
+ echo "Error: Failed to download containerd source code."
19
+ exit 1
20
+fi
21
+
22
+# Ensure the file is removed on exit
23
trap 'rm containerd.tar.gz' EXIT
24
25
# Extract zip archive to a temporary directory.
0 commit comments