mirror of
https://github.com/systemd/systemd.git
synced 2025-01-09 01:18:19 +03:00
8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
if [[ "$1" == "clangd" ]]; then
|
|
exec "$@"
|
|
fi
|