We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca32baf commit 658d505Copy full SHA for 658d505
1 file changed
makedist.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+set -x
3
+name=linux
4
+version=6.3
5
+tarballs=$name-$version-`date +%Y%m%d`.tar.xz
6
+
7
+git archive --format=tar.xz --prefix=$name-$version/ -o $tarballs HEAD
8
9
+if mountpoint /archlinux/ >/dev/null 2>&1;then
10
+ cp $tarballs /archlinux/sources
11
+fi
0 commit comments