when I want to create a tar archive in a relative path, I can do this:
tar cf archiveName.tar -C relative/path someDirectory
but when I want to update the archive, this
tar uf archiveName.tar -C relative/path someDirectory
gives me the following errors:
tar: someDirectory/someFile: Cannot stat: No such file or directory
... (same error for all files and dirs in someDirectory)
tar: Exiting with faliure...
Am I missing something?