mirror of https://github.com/linuxdeepin/linglong
16 lines
337 B
Bash
16 lines
337 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
|
||
|
|
#
|
||
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
|
|
||
|
|
set -e
|
||
|
|
set -o pipefail
|
||
|
|
|
||
|
|
GIT=${GIT:="git"}
|
||
|
|
|
||
|
|
repoRoot="$("$GIT" rev-parse --show-toplevel)"
|
||
|
|
cd "$repoRoot"
|
||
|
|
|
||
|
|
wget -O cmake/PFL.cmake https://github.com/black-desk/PFL.cmake/releases/latest/download/PFL.cmake
|