Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

How to prevent butler from overwriting some files

A topic by Tropical created Aug 25, 2022 Views: 434 Replies: 1
Viewing posts 1 to 2

Hi!

One folder in my game files has user configuration and saves. I want to prevent butler from overwriting this folder while updating the game. How could I achieve that?

(what I'm looking for is basically equivalent to SteamPipe "userconfig" attribute)

(+1)

with command
--ignore 'file_name'

Example, don't push .sav and .cfg files

butler push --ignore '*.sav' --ignore '*.cfg'