summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-01-27 14:00:07 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-01-28 09:55:35 +0100
commit1f6f8cc8039a204609ddab79791ef22ee6340da0 (patch)
tree0e3ac81973af25ef6ec52a321df76a76406a5ce0 /tools
parent984b529684bf5597984b8d7ed8317b7d239b8dd3 (diff)
downloadsystemd-1f6f8cc8039a204609ddab79791ef22ee6340da0.tar.gz
Use .txt as the extension of arch syscall lists
This makes it easier to filter those files and tells editors that they should be treated as plain text.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/syscall-table-update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syscall-table-update.sh b/tools/syscall-table-update.sh
index 410b20c5d9..4f56aecedd 100755
--- a/tools/syscall-table-update.sh
+++ b/tools/syscall-table-update.sh
@@ -7,5 +7,5 @@ cd "$1" && shift
curl --fail -L -o syscall-list.txt 'https://raw.githubusercontent.com/hrw/syscalls-table/master/syscall-names.text'
for arch in "$@"; do
- curl --fail -L -o syscalls-$arch "https://raw.githubusercontent.com/hrw/syscalls-table/master/tables/syscalls-$arch"
+ curl --fail -L -o syscalls-$arch.txt "https://raw.githubusercontent.com/hrw/syscalls-table/master/tables/syscalls-$arch"
done