mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +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
|