mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
resolved conflicts
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ -z "$branch" ]]; then
|
||||
echo "Please specify the branch you want to checkout to"
|
||||
exit;
|
||||
fi
|
||||
|
||||
modules=('Cancer' 'Pharmacy' 'Payroll' 'PatientFinance' 'PatientDiscounts' 'Maternity' 'Journals' 'Invoices' 'Investigations' 'Insurance' 'Hiv' 'FinanceReports'
|
||||
'Finance' 'EyeClinic' 'Expenses' 'Diabetes' 'Budgets' 'Banking' 'Antenatal' 'Stores' 'Theatre' 'Reports' 'WardManagement')
|
||||
|
||||
for module in "${modules[@]}"; do
|
||||
echo "Status: ${module}"
|
||||
|
||||
cd Modules/"$module" || continue
|
||||
|
||||
git checkout "$branch"
|
||||
|
||||
cd ../../
|
||||
done
|
||||
|
||||
git checkout "$branch"
|
||||
Reference in New Issue
Block a user