Skip to content

Commit 6abb13f

Browse files
authored
Fix resource unpacking (#3)
* Fix resource unpacking * Debug
1 parent cc21cc4 commit 6abb13f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ jobs:
4949
run: |
5050
VERSION=$(grep -E -v ^# ../../CEF_VERSION.txt)
5151
wget https://cef-builds.spotifycdn.com/$VERSION.tar.bz2 -O cef.tar.bz2
52-
tar xf cef.tar.bz2 $VERSION/LICENSE.txt --strip-components 1
53-
tar xf cef.tar.bz2 $VERSION/Release/libcef.lib $VERSION/Resources --strip-components 2
52+
tar xf cef.tar.bz2 $VERSION/LICENSE.txt $VERSION/Resources --strip-components 1
53+
tar xf cef.tar.bz2 $VERSION/Release/libcef.lib --strip-components 2
5454
tar xf cef.tar.bz2 --wildcards $VERSION/Release/*.dll --wildcards $VERSION/Release/*.bin --strip-components 2
55-
cp -r *.dll *.bin Resources LICENSE.txt ../../java/org.eclipse.set.browser.cef.win32/res/cef
55+
cp -r *.dll *.bin Resources/* LICENSE.txt ../../java/org.eclipse.set.browser.cef.win32/res/cef
56+
ls -avl ../../java/org.eclipse.set.browser.cef.win32/res/cef
5657
working-directory: cef/Release
5758

5859
- name: Build Rust

0 commit comments

Comments
 (0)