Upload var/lib/dpkg/info/coreutils.postinst with huggingface_hub
Browse files
var/lib/dpkg/info/coreutils.postinst
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
set -e
|
3 |
+
|
4 |
+
if [ "$1" = 'configure' -a ! -e '/usr/bin/touch' ]; then
|
5 |
+
ln -s /bin/touch /usr/bin/touch
|
6 |
+
fi
|
7 |
+
|
8 |
+
|