blob: 1606bb93b8fe71d7a4a0d072d6488c30955c065c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
post_install() {
echo ""
echo "FURTHER CONFIGURATION IS NEEDED!"
echo "Create folder named .Hearthstone in your home directory."
echo "Create symlinks of the Hearthstone's output_log and log.config"
echo "in the newly created folder."
echo ""
echo "You may also need to manually enable Hearthstone logging."
echo "More information here:"
echo "https://www.reddit.com/r/hearthstone/comments/268fkk/simple_hearthstone_logging_see_your_complete_play"
echo ""
echo "Don't forget to make sure that the logging actually works"
echo "before proceeding."
echo ""
}
|