Skip to content

Commit c92956d

Browse files
bass.h moved to c folder (#1112)
* bass.h moved to c folder * opus too * c folder
1 parent 54afcee commit c92956d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ jobs:
139139
run: |
140140
curl http://www.un4seen.com/files/bass24-linux.zip -o bass.zip
141141
unzip -d bass -o bass.zip
142-
cp ./bass/bass.h ./lib
142+
cp ./bass/c/bass.h ./lib
143143
cp ./bass/libs/x86_64/libbass.so ./lib/
144144
cp ./bass/libs/x86_64/libbass.so ./bin/
145145
146146
curl http://www.un4seen.com/files/bassopus24-linux.zip -o bassopus.zip
147147
unzip -d bass -o bassopus.zip
148-
cp ./bass/bassopus.h ./lib
148+
cp ./bass/c/bassopus.h ./lib
149149
cp ./bass/libs/x86_64/libbassopus.so ./lib/
150150
cp ./bass/libs/x86_64/libbassopus.so ./bin/
151151

configure.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,12 @@ get_bass() {
235235
x64/bass.dll:./bin
236236
elif [[ "$PLATFORM" == "linux" ]]; then
237237
get_zip https://www.un4seen.com/files/bass24-linux.zip \
238-
bass.h:./lib \
238+
c/bass.h:./lib \
239239
libs/x86_64/libbass.so:./lib \
240240
libs/x86_64/libbass.so:./bin
241241
elif [[ "$PLATFORM" == "macos" ]]; then
242242
get_zip https://www.un4seen.com/files/bass24-osx.zip \
243-
bass.h:./lib \
243+
c/bass.h:./lib \
244244
libbass.dylib:./lib
245245
fi
246246
}
@@ -261,12 +261,12 @@ get_bassopus() {
261261
x64/bassopus.dll:./bin
262262
elif [[ "$PLATFORM" == "linux" ]]; then
263263
get_zip https://www.un4seen.com/files/bassopus24-linux.zip \
264-
bassopus.h:./lib \
264+
c/bassopus.h:./lib \
265265
libs/x86_64/libbassopus.so:./lib \
266266
libs/x86_64/libbassopus.so:./bin
267267
elif [[ "$PLATFORM" == "macos" ]]; then
268268
get_zip https://www.un4seen.com/files/bassopus24-osx.zip \
269-
bassopus.h:./lib \
269+
c/bassopus.h:./lib \
270270
libbassopus.dylib:./lib
271271
fi
272272
}

0 commit comments

Comments
 (0)