fix accidental duplicate line
This commit is contained in:
parent
2ed6f066a1
commit
de733367df
1 changed files with 11 additions and 0 deletions
11
packages/jelos/sources/scripts/getoverlays
Executable file
11
packages/jelos/sources/scripts/getoverlays
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
|
||||
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
||||
|
||||
|
||||
find /storage/overlays/ -name '*.cfg' -print0 |
|
||||
while IFS= read -r -d '' line; do
|
||||
echo ${line#/storage/overlays/},
|
||||
done
|
Loading…
Reference in a new issue