missing new line
This commit is contained in:
parent
4fc046627e
commit
8822fe2657
@ -458,12 +458,12 @@ class RepoSync:
|
|||||||
debug_entry_point_open = open(debug_entry_point_sh, "w+")
|
debug_entry_point_open = open(debug_entry_point_sh, "w+")
|
||||||
|
|
||||||
entry_point_open.write('#!/bin/bash\n')
|
entry_point_open.write('#!/bin/bash\n')
|
||||||
entry_point_open.write('set -o pipefail')
|
entry_point_open.write('set -o pipefail\n')
|
||||||
entry_point_open.write('/usr/bin/dnf install dnf-plugins-core -y\n')
|
entry_point_open.write('/usr/bin/dnf install dnf-plugins-core -y\n')
|
||||||
entry_point_open.write(sync_cmd + '\n')
|
entry_point_open.write(sync_cmd + '\n')
|
||||||
|
|
||||||
debug_entry_point_open.write('#!/bin/bash\n')
|
debug_entry_point_open.write('#!/bin/bash\n')
|
||||||
debug_entry_point_open.write('set -o pipefail')
|
debug_entry_point_open.write('set -o pipefail\n')
|
||||||
debug_entry_point_open.write('/usr/bin/dnf install dnf-plugins-core -y\n')
|
debug_entry_point_open.write('/usr/bin/dnf install dnf-plugins-core -y\n')
|
||||||
debug_entry_point_open.write(debug_sync_cmd + '\n')
|
debug_entry_point_open.write(debug_sync_cmd + '\n')
|
||||||
|
|
||||||
@ -501,7 +501,7 @@ class RepoSync:
|
|||||||
)
|
)
|
||||||
source_entry_point_open = open(source_entry_point_sh, "w+")
|
source_entry_point_open = open(source_entry_point_sh, "w+")
|
||||||
source_entry_point_open.write('#!/bin/bash\n')
|
source_entry_point_open.write('#!/bin/bash\n')
|
||||||
source_entry_point_open.write('set -o pipefail')
|
source_entry_point_open.write('set -o pipefail\n')
|
||||||
source_entry_point_open.write('/usr/bin/dnf install dnf-plugins-core -y\n')
|
source_entry_point_open.write('/usr/bin/dnf install dnf-plugins-core -y\n')
|
||||||
source_entry_point_open.write(source_sync_cmd + '\n')
|
source_entry_point_open.write(source_sync_cmd + '\n')
|
||||||
source_entry_point_open.close()
|
source_entry_point_open.close()
|
||||||
|
Loading…
Reference in New Issue
Block a user