Skip to content

Commit

Permalink
fix more lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshrijal committed Sep 26, 2024
1 parent 157c3b7 commit 325273d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tasks/vscode.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
- name: Add Microsoft GPG key
apt_key:
ansible.builtin.apt_key:
url: https://packages.microsoft.com/keys/microsoft.asc
state: present

- name: Add VSCode repository
apt_repository:
ansible.builtin.apt_repository:
repo: 'deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main'
state: present

- name: Update APT package index
apt:
update_cache: yes
ansible.builtin.apt:
update_cache: true

- name: Install Visual Studio Code
apt:
ansible.builtin.apt:
name: code
state: present

0 comments on commit 325273d

Please sign in to comment.