mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-29 11:44:53 +01:00
mkdir -p but for real
This commit is contained in:
parent
1a74f9792f
commit
09dfaf00fa
@ -84,7 +84,7 @@ func BackupAndRestoreWithId(t *testing.T, id string) func() {
|
|||||||
func touchFile(p string) {
|
func touchFile(p string) {
|
||||||
_, err := os.Stat(p)
|
_, err := os.Stat(p)
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
checkError(os.MkdirAll(filepath.Base(p), os.ModePerm))
|
checkError(os.MkdirAll(filepath.Dir(p), os.ModePerm))
|
||||||
file, err := os.Create(p)
|
file, err := os.Create(p)
|
||||||
checkError(err)
|
checkError(err)
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
Loading…
Reference in New Issue
Block a user