Skip to content

Commit

Permalink
common-apps: explain why to create .wine
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Sep 26, 2022
1 parent 865ee97 commit 8cc5091
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/common-apps-functions-source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,12 @@ function test_wine()

run_app "${test_bin_path}/winebuild" --version

run_verbose mkdir -p ${HOME}/.wine
# When running in Docker with the home mounted, wine throws:
# wine: '/github/home' is not owned by you, refusing to create a configuration directory there
# To avoid it, create the .wine folder beforehand.
run_verbose mkdir -p "${HOME}/.wine"

run_app "${test_bin_path}/winecfg" --version
# run_app "${test_bin_path}/wineconsole" dir

# This test should check if the program is able to start
# a simple executable.
Expand Down

0 comments on commit 8cc5091

Please sign in to comment.